home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / Developer University / DUProjects / DataCopy / Sources / PartInfo.fr < prev    next >
Encoding:
Text File  |  1996-03-05  |  1.9 KB  |  88 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //
  3. //    File:                PartInfo.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef FWPART_FR
  15. #include "FWPart.fr"
  16. #endif
  17.  
  18. #ifndef DEFINES_K
  19. #include "Defines.k"
  20. #endif
  21.  
  22. #ifndef BINDING_K
  23. #include "Binding.k"
  24. #endif
  25.  
  26. #ifndef SLGCONST_K
  27. #include "SLGConst.k" 
  28. #endif
  29.  
  30. #ifndef FWVIEWS_FR
  31. #include "FWViews.fr"
  32. #endif
  33.  
  34. //----------------------------------------------------------------------------------------
  35. //    PartInfo Resource
  36. //----------------------------------------------------------------------------------------
  37.  
  38. resource FW_RPartInfo(kPartInfoID)
  39. {
  40.     // ----- Icon ID
  41.     kPartIconID,
  42.     
  43.     // ----- Part Name
  44.     kDataCopyKindUserString,
  45.     
  46.     // ----- PartKind
  47.     kDataCopyKind
  48. };
  49.  
  50. //----------------------------------------------------------------------------------------
  51. //    About Resource
  52. //----------------------------------------------------------------------------------------
  53.  
  54. resource FW_RAbout(kAbout)
  55. {
  56.     // ----- Icon ID
  57.     130,                                                        
  58.     // ----- Part Name
  59.     FW_RStyledText
  60.     (
  61.         FW_FIX(18), 
  62.         FW_kBold, 
  63.         "times", 
  64.         "DataCopy"
  65.     ),
  66.     // ----- Version Number
  67.     FW_RStyledText
  68.     (
  69.         FW_FIX(9),
  70.         FW_kPlain,
  71.         "geneva",
  72.         "ODF Release 1"
  73.     ),
  74.     // ----- Credits
  75.     FW_RStyledText
  76.     (
  77.         FW_FIX(9),
  78.         FW_kPlain,
  79.         "geneva",
  80.         "DataCopy....\r"                                    
  81.         "Nomally uses Undoable commands.\r"
  82.         "Hold down shift to not use commands.\r"                                    
  83.         "Nomally draws only pizzas that intersect invalid rect.\r"
  84.         "Hold down command to draw all pizzas.\r"                                
  85.         "Hold down command when saving to see # of pizzas.\r"                                    
  86.         "Written by Dave Wilson.\r© 1993-96 Apple Computer, Inc., all right reserved."
  87.     )
  88. };